From a02ea35106a2f5609392f8ff147cc61837b3c352 Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Thu, 13 May 2004 13:00:02 +0000 Subject: [PATCH] (emacs-version): Check for `gtk' feature before `x-toolkit' feature. --- lisp/version.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/version.el b/lisp/version.el index 42dbb3f9c25..d489eeea02e 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -61,9 +61,9 @@ to the system configuration; look at `system-configuration' instead." system-configuration (cond ((featurep 'motif) (concat ", " (substring motif-version-string 4))) - ((featurep 'x-toolkit) ", X toolkit") ((featurep 'gtk) (concat ", GTK+ Version " gtk-version-string)) + ((featurep 'x-toolkit) ", X toolkit") (t "")) (if (and (boundp 'x-toolkit-scroll-bars) (memq x-toolkit-scroll-bars '(xaw xaw3d))) -- 2.30.2